home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
UTILENUS
/
MARXMENU.LZH
/
INSTALL.BAT
next >
Wrap
DOS Batch File
|
1991-03-20
|
2KB
|
101 lines
Echo OFF
Cls
Echo *======[[ Computer Tyme Software Installation ]]========*
Echo .
Echo If you are installing MarxMenu ......
Echo .
Echo This program will unpack the compressed files and compile
Echo the menus. Then MarxMenu will create the MARX.BAT file for
Echo your system.
Echo .
Echo *===============[[ I M P O R T A N T ! ]]===============*
Echo .
Echo You should be running this on your hard disk or network
Echo If you're not, copy the files onto your hard disk or network
Echo and run INSTALL from there.
Echo .
Echo Be sure to copy ALL the disks that came with your software
Echo your hard disk or network before running INSTALL.
Echo .
Echo *===============[[ I M P O R T A N T ! ]]===============*
Echo .
Echo If you are running this on a floppy disk, press CTRL-C now!
Echo .
Pause
if not exist NSK.EXE goto skip
Cls
Echo Unpacking Network Survival Kit . . .
NSK -o
if ErrorLevel 1 goto Err
DEL NSK.EXE
:skip
if not exist NSKEVAL.EXE goto skip1
Cls
Echo Unpacking Network Survival Kit Evaluation . . .
NSKEVAL -o
if ErrorLevel 1 goto Err
DEL NSKEVAL.EXE
:skip1
if not exist MARXDOC.EXE goto skip2
Cls
Echo UnPacking MarxMenu Documentation Files . . .
MarxDoc -o
if ErrorLevel 1 goto Err
DEL MARXDOC.EXE
:skip2
if not exist MENUS.EXE goto skip3
Cls
Echo Unpacking Sample Menus . . .
Menus -o
if ErrorLevel 1 goto Err
DEL MENUS.EXE
:skip3
if not exist DISK2.EXE goto skip4
Cls
Echo Unpacking MarxEdit and TSR Utilities . . .
Disk2 -o
if ErrorLevel 1 goto Err
DEL DISK2.EXE
:skip4
if not exist TOOLBOX.EXE goto skip5
Cls
Echo Unpacking Dos ToolBox . . .
ToolBox -o
if ErrorLevel 1 goto Err
DEL TOOLBOX.EXE
:skip5
if not exist INST.MNU goto skip6
Cls
Echo Compiling Menus . . .
for %%m in (*.mnu) do MarxComp %%m
Cls
Echo Loading Installation Menu . . .
MARXMENU INST
:skip6
if exist PIPEDIR.EXE copy PIPEDIR.EXE WHEREIS.EXE >nul
cls
echo All Done!
goto end
:Err
cls
echo An error occurred while installing the software!
echo .
echo The most common error is trying to run INSTALL from a floppy
echo disk drive. The correct procedure is to copy all the enclosed
echo disks onto your hard disk or network and then run install.
echo .
echo If you still have a problem call Computer Tyme tech support
echo at 1-417-866-1222.
echo .
:end